home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Classicos / FrogIT.swf / scripts / DefineButton2_174 / BUTTONCONDACTION on(keyPress Down).as
Encoding:
Text File  |  2006-06-13  |  343 b   |  14 lines

  1. on(keyPress "<Down>"){
  2.    set("../score:score",eval("/score:score") - "20");
  3.    setProperty("/frosch", _Y, getProperty("/frosch", _Y) + "17");
  4.    x_value = getProperty("/frosch", _X);
  5.    y_value = getProperty("/frosch", _Y);
  6.    tellTarget("/frosch")
  7.    {
  8.       gotoAndStop("back");
  9.       play();
  10.    }
  11.    nextFrame();
  12.    play();
  13. }
  14.